![Maven Central Adds Sigstore Signature Validation](https://cdn.sanity.io/images/cgdhsj6q/production/7da3bc8a946cfb5df15d7fcf49767faedc72b483-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
@equinor/fusion-framework-module-event
Advanced tools
This package is meant for dispatching events between modules (siblings) and cross instances (parent|adjunct)
Base on the native node/web js event system, but the dispatcher is
async
for easier handling ofcancelable
events.NOTE that creating a
cancelable
event without awaiting resolution, will not respect thepreventDefault
behavior!
const configurator = (config) => {
/** disable propagation of all events */
delete config.event.onBubble
/** pre-handle all events before dispatch */
config.event.onDispatch = (e: FrameworkEvent) => {
if(!allow_event(e)){
e.preventDefault();
}
}
}
import { ModuleEvent } from '@equinor/fusion-framework-module-event';
/** declare event type for code completion */
declare module '@equinor/fusion-framework-module-event' {
interface ModuleEventMap {
'someEvent': FrameworkEvent<FrameworkEventInit<MyDataObject, MySource>>;
}
}
import { ModuleEvent } from '@equinor/fusion-framework-module-event';
type CustomFrameworkEventInit = FrameworkEventInit<MyDataObject, MySource>;
class MyCustomEvent extends FrameworkEvent<CustomFrameworkEventInit, 'myCustomEvent'> {
constructor(init: CustomFrameworkEventInit) { /** logic */ }
}
/** declare event type for code completion */
declare module '@equinor/fusion-framework-module-event' {
interface ModuleEventMap {
'myCustomEvent': MyCustomEvent;
}
}
const teardown = modules.event.addEventListener('someEvent', (event) => console.log(event));
// remove event listener
teardown();
// simple
const event = await modules.event.dispatchEvent(
'myEvent',
{
detail: 'some detail',
canBubble: false,
cancelable: true
}
);
// alternative
const event = new MyCustomFrameworkEvent(
'myCustomEvent',
{
detail: 'some detail',
canBubble: false,
cancelable: true
}
);
await modules.event.dispatchEvent(myEvent);
if(!event.defaultPrevent){
doSomeAction();
}
note that when subscribing to events, it does not allow side-effects, like
preventDefault
andstopPropagation
const subscription = modules.event.subscribe(console.log);
subscription.add(
modules.event.subscribe({
next: (event) => console.log(event),
error: (err) => console.error(err),
complete: () => 'event provider disposed'
})
);
// when unmount
subscription.unsubscribe();
FAQs
Fusion module for events
The npm package @equinor/fusion-framework-module-event receives a total of 1,030 weekly downloads. As such, @equinor/fusion-framework-module-event popularity was classified as popular.
We found that @equinor/fusion-framework-module-event demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.